home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / source8 / viewph.dpr < prev    next >
Text File  |  1995-12-22  |  443b  |  21 lines

  1. program Viewph;
  2. uses
  3.   Forms,
  4.   Uimage in 'UIMAGE.PAS' {Form1},
  5.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  6.   Uabout in 'UABOUT.PAS' {AboutBox},
  7.   U_p_size in 'U_P_SIZE.PAS' {Printersize};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TFullSlide, FullSlide);
  14.   Application.CreateForm(TAboutBox, AboutBox);
  15.   Application.CreateForm(TPrintersize, Printersize);
  16.   Application.Run;
  17. end.
  18.  
  19.  
  20.  
  21.